/* Footer Styling */
#footer {
    background-color: #1a1a1a;
    padding: 30px 0; /* Reduced padding */
}

.footer-menu {
    color: white;
    text-align: center;
}

.footer-menu h6 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px; /* Reduced margin */
}

/* Reduce space between sections */
.footer-menu .logo {
    margin-bottom: 10px; /* Reduced space below the logo */
}

.footer-menu .menu-list {
    list-style: none;
    padding: 0;
    margin-top: 5px; /* Reduced top margin */
}

/* Quick Links & Top Brands */
.footer-menu .menu-list li {
    padding-bottom: 5px; /* Reduced padding */
}

.footer-menu .menu-list li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-menu .menu-list li a:hover {
    color: #ff0000;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: -5px; /* Reduced space */
    position: relative;
    top: -2px; /* Slightly moved up */
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons a {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    color: #ff0000;
    background: white;
    transform: scale(1.1);
}

/* Contact Details */
.footer-menu p {
    margin: 5px 0;
    font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 10px; /* Reduced padding */
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 12px;
}

.footer-bottom a {
    color: #ff0000;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991px) { /* Tablets */
    .footer-menu {
        text-align: center;
    }

    .footer-menu ul {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) { /* Mobile Phones */
    .footer-menu .d-flex {
       
        text-align: center;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        font-size: 16px;
        width: 28px;
        height: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-bottom: 8px;
    }
}
